summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/edp-progress/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/edp-progress/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/edp-progress/page.tsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/edp-progress/page.tsx b/app/[lng]/evcp/(evcp)/edp-progress/page.tsx
index fe040709..9464c037 100644
--- a/app/[lng]/evcp/(evcp)/edp-progress/page.tsx
+++ b/app/[lng]/evcp/(evcp)/edp-progress/page.tsx
@@ -4,15 +4,21 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { Shell } from "@/components/shell"
import { InformationButton } from "@/components/information/information-button"
import { VendorFormStatusTable } from "@/components/form-data-stat/form-data-stat-table"
+import { useTranslation } from "@/i18n"
+interface edpProgressPageProps {
+ params: Promise<{ lng: string }>
+}
-export default async function IndexPage() {
+export default async function IndexPage({ params: edpProgressPageProps }) {
+ const { lng } = await params
+ const { t } = await useTranslation(lng, 'menu')
return (
<Shell className="gap-2">
<div className="flex items-center justify-between space-y-2">
<div className="flex items-center gap-2">
- <h2 className="text-2xl font-bold tracking-tight">벤더 데이터 진척도 현황</h2>
+ <h2 className="text-2xl font-bold tracking-tight">{t('menu.engineering_management.vendor_progress')}</h2>
<InformationButton pagePath="evcp/edp-progress" />
</div>
</div>